home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / linux / mtd / flashchip.h < prev    next >
C/C++ Source or Header  |  2005-10-13  |  2KB  |  90 lines

  1.  
  2. /* 
  3.  * struct flchip definition
  4.  * 
  5.  * Contains information about the location and state of a given flash device 
  6.  *
  7.  * (C) 2000 Red Hat. GPLd.
  8.  *
  9.  * $Id: flashchip.h,v 1.15 2004/11/05 22:41:06 nico Exp $
  10.  *
  11.  */
  12.  
  13. #ifndef __MTD_FLASHCHIP_H__
  14. #define __MTD_FLASHCHIP_H__
  15.  
  16. /* For spinlocks. sched.h includes spinlock.h from whichever directory it
  17.  * happens to be in - so we don't have to care whether we're on 2.2, which
  18.  * has asm/spinlock.h, or 2.4, which has linux/spinlock.h 
  19.  */
  20. #include <linux/sched.h>
  21.  
  22. typedef enum { 
  23.     FL_READY,
  24.     FL_STATUS,
  25.     FL_CFI_QUERY,
  26.     FL_JEDEC_QUERY,
  27.     FL_ERASING,
  28.     FL_ERASE_SUSPENDING,
  29.     FL_ERASE_SUSPENDED,
  30.     FL_WRITING,
  31.     FL_WRITING_TO_BUFFER,
  32.     FL_WRITE_SUSPENDING,
  33.     FL_WRITE_SUSPENDED,
  34.     FL_PM_SUSPENDED,
  35.     FL_SYNCING,
  36.     FL_UNLOADING,
  37.     FL_LOCKING,
  38.     FL_UNLOCKING,
  39.     FL_POINT,
  40.     FL_XIP_WHILE_ERASING,
  41.     FL_XIP_WHILE_WRITING,
  42.     FL_UNKNOWN
  43. } flstate_t;
  44.  
  45.  
  46.  
  47. /* NOTE: confusingly, this can be used to refer to more than one chip at a time, 
  48.    if they're interleaved.  This can even refer to individual partitions on
  49.    the same physical chip when present. */
  50.  
  51. struct flchip {
  52.     unsigned long start; /* Offset within the map */
  53.     //    unsigned long len;
  54.     /* We omit len for now, because when we group them together
  55.        we insist that they're all of the same size, and the chip size
  56.        is held in the next level up. If we get more versatile later,
  57.        it'll make it a damn sight harder to find which chip we want from
  58.        a given offset, and we'll want to add the per-chip length field
  59.        back in.
  60.     */
  61.     int ref_point_counter;
  62.     flstate_t state;
  63.     flstate_t oldstate;
  64.  
  65.     int write_suspended:1;
  66.     int erase_suspended:1;
  67.     unsigned long in_progress_block_addr;
  68.  
  69.     spinlock_t *mutex;
  70.     spinlock_t _spinlock; /* We do it like this because sometimes they'll be shared. */
  71.     wait_queue_head_t wq; /* Wait on here when we're waiting for the chip
  72.                  to be ready */
  73.     int word_write_time;
  74.     int buffer_write_time;
  75.     int erase_time;
  76.  
  77.     void *priv;
  78. };
  79.  
  80. /* This is used to handle contention on write/erase operations
  81.    between partitions of the same physical chip. */
  82. struct flchip_shared {
  83.     spinlock_t lock;
  84.     struct flchip *writing;
  85.     struct flchip *erasing;
  86. };
  87.  
  88.  
  89. #endif /* __MTD_FLASHCHIP_H__ */
  90.